#!/bin/bash # It is recommended to test the script on a local machine for its purpose and effects. # ManageEngine Desktop Central will not be responsible for any # damage/loss to the data/setup based on the behavior of the script. # Description - Script to Remove Torrent app in Mac # Configuration - USER # Remove bit torrent rm -rf "/Applications/BitTorrent Web.app" rm -rf "$HOME/Library/Application Support/BitTorrent Web" rm -rf "$HOME/Library/Caches/com.bittorrent.BitTorrent" rm -rf "$HOME/Library/Preferences/com.bitTorrent.btweb.plist" rm -rf "$HOME/Library/LaunchAgents/com.bittorrent.plist" # Remove utorrent rm -rf "/Applications/uTorrent Web.app" rm -rf "$HOME/Library/Application Support/uTorrent Web" rm -rf "$HOME/Library/Caches/com.bitTorrent.utweb" rm -rf "$HOME/Library/Preferences/com.bitTorrent.utweb.plist" rm -rf "$HOME/Library/LaunchAgents/com.bittorrent.plist" # Remove qBittorrent rm -rf "/Applications/qbittorrent.app" rm -rf "$HOME/Library/Application Support/qBittorrent" rm -rf "$HOME/Library/Caches/qBittorrent" rm -rf "$HOME/Library/Preferences/qBittorrent"